home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue55 / Persist / EFieldsEditor.dpk < prev    next >
Encoding:
Delphi Package  |  2000-02-02  |  1.3 KB  |  56 lines

  1. package EFieldsEditor;
  2.  
  3. {
  4. Author     : Guy Smith-Ferrier (based on a solution by Brian Long)
  5. Date       : February 2000
  6. Description:
  7. This package contains an Enhanced Fields Editor for the purposes of allowing
  8. Delphi 5 developers to customize the control classes which are created when
  9. dragging and dropping fields from the Fields Editor. For a more complete
  10. description see the associated TXT file.
  11. }
  12.  
  13. {$R *.RES}
  14. {$ALIGN ON}
  15. {$ASSERTIONS ON}
  16. {$BOOLEVAL OFF}
  17. {$DEBUGINFO ON}
  18. {$EXTENDEDSYNTAX ON}
  19. {$IMPORTEDDATA ON}
  20. {$IOCHECKS ON}
  21. {$LOCALSYMBOLS ON}
  22. {$LONGSTRINGS ON}
  23. {$OPENSTRINGS ON}
  24. {$OPTIMIZATION ON}
  25. {$OVERFLOWCHECKS OFF}
  26. {$RANGECHECKS OFF}
  27. {$REFERENCEINFO ON}
  28. {$SAFEDIVIDE OFF}
  29. {$STACKFRAMES OFF}
  30. {$TYPEDADDRESS OFF}
  31. {$VARSTRINGCHECKS ON}
  32. {$WRITEABLECONST ON}
  33. {$MINENUMSIZE 1}
  34. {$IMAGEBASE $400000}
  35. {$DESCRIPTION 'Enhanced Fields Editor'}
  36. {$DESIGNONLY}
  37. {$IMPLICITBUILD OFF}
  38.  
  39. requires
  40.   vcl50,
  41.   dcldb50,
  42.   dclbde50,
  43.   dclado50,
  44.   dclmid50;
  45.  
  46. contains
  47.   EBDEFieldsEditor in 'EBDEFieldsEditor.pas',
  48.   BDEReg2 in 'BDEReg2.pas',
  49.   EFECommon in 'EFECommon.pas',
  50.   EDSFieldsEditor in 'EDSFieldsEditor.pas',
  51.   EADOFieldsEditor in 'EADOFieldsEditor.pas',
  52.   ECDSFieldsEditor in 'ECDSFieldsEditor.pas',
  53.   MidReg2 in 'MidReg2.pas';
  54.  
  55. end.
  56.